home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / profil.c < prev    next >
C/C++ Source or Header  |  1989-01-06  |  1KB  |  52 lines

  1. /*
  2.  * profil.c --
  3.  *
  4.  *    Procedure to map from Unix profil system call to Sprite.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header$";
  18. #endif
  19.  
  20. #include "sprite.h"
  21. #include "compatInt.h"
  22.  
  23.  
  24. /*
  25.  *----------------------------------------------------------------------
  26.  *
  27.  * profile --
  28.  *
  29.  *    Procedure to map from Unix profil system call to Sprite Prof_Profil.
  30.  *
  31.  * Results:
  32.  *    Always returns UNIX_SUCCESS.
  33.  *
  34.  * Side effects:
  35.  *    The process is scheduled for profiling.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. int
  41. profil(buffer, bufsize, offset, scale)
  42.     char *buffer;   /* pointer to buffer where profile data will be stored */
  43.     int bufsize;    /* size of buffer */
  44.     int offset;     /* offset to be subtracted from pc */
  45.     int scale;      /* scale that pc is divided by */
  46. {
  47.  
  48.     Prof_Profil(buffer, bufsize, offset, scale);
  49.     return UNIX_SUCCESS;
  50. }
  51.  
  52.